From a7e560fcfabca45aef606085399efddaf27d77f0 Mon Sep 17 00:00:00 2001 From: Yehuda Katz + Carl Lerche Date: Thu, 26 Jun 2014 17:10:00 -0700 Subject: [PATCH] Fix temporary error message to be clearer --- src/cargo/core/resolver.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cargo/core/resolver.rs b/src/cargo/core/resolver.rs index dc81e5cb8..2f07aaf74 100644 --- a/src/cargo/core/resolver.rs +++ b/src/cargo/core/resolver.rs @@ -39,8 +39,8 @@ pub fn resolve(deps: &[Dependency], } if opts.len() > 1 { - return Err(internal("Temporarily, Cargo only supports a single \ - result for a dependency")) + return Err(internal(format!("At the moment, Cargo only supports a\ + single source for a particular package name ({}).", curr.get_name()))); } let pkg = opts.get(0).clone(); -- 2.30.2